home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-01-18 | 660 b | 25 lines |
- #
- # MAKE FILE FOR unix systems
- # add what optimizion options your system supports
- # on some systems there may be no setvbuf() or the code may generate
- # errors if the large buffer is used for the stream, if so :
- # add -DNO_SETVBUF
- # and if your system doesn't support either setvbuf or setbuf
- # add -DNO_SETBUF
- # add -DALLOC if your system uses alloc() instead of malloc()
- # add -DNOSIGNAL for faster processing on a unix pc
-
- CFLAGS=-DUNIX -DNDEBUG
- OFLAGS=
- LIB=
- PROG=compress
- OBJ=compress.o compusi.o compapi.o
-
- $(PROG): $(OBJ)
- cc -o $(PROG) $(OFLAGS) $(OBJ) $(LIB)
-
- compapi.o: compress.h
- compress.o: compress.h
- compusi.o: compress.h
-
-